home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 11255 / 11255.xpi / chrome / content / model / Locale.js < prev    next >
Text File  |  2009-11-25  |  1KB  |  42 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * 
  3.  * Pearltrees add-on AMO, Copyright(C), 2009, Broceliand SAS, Paris, France 
  4.  * (company in charge of developing Pearltrees)
  5.  * 
  6.  * This file is part of ΓÇ£Pearltrees add-on AMOΓÇ¥.  
  7.  * 
  8.  * Pearltrees add-on AMO is free software: you can redistribute it and/or modify it under the 
  9.  * terms of the GNU General Public License version 3 as published by the Free Software Foundation.
  10.  * 
  11.  * Pearltrees add-on AMO is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 
  12.  * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
  13.  * See the GNU General Public License for more details.
  14.  * 
  15.  * You should have received a copy of the GNU General Public License along with Pearltrees add-on AMO. 
  16.  * If not, see <http://www.gnu.org/licenses/>
  17.  * 
  18.  * ***** END LICENSE BLOCK ***** */
  19.  
  20. /////////////////////////////////////////////////////////////////////////////////
  21. // Localisation
  22. /////////////////////////////////////////////////////////////////////////////////
  23.  
  24. /**
  25.  * Is used in JS scripts for localized strings. 
  26.  */
  27. var BRO_locale = {
  28.     
  29.     _strings:null,
  30.     
  31.     init: function() {
  32.         this._strings = document.getElementById("toolbar-strings");
  33.     },
  34.       
  35.     getString: function(stringId) {
  36.         if(!this._strings) { 
  37.             this.init();
  38.             if(!this._strings) return;
  39.         }
  40.         return this._strings.getString(stringId);
  41.     }
  42. };